home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_10_05 / 1005076b < prev    next >
Text File  |  1992-03-07  |  214b  |  13 lines

  1. /*
  2.  *    Listing 8 - local malloc header
  3.  */
  4.  
  5.  
  6. #ifndef    MY_MALLOC
  7. #define    MY_MALLOC
  8.  
  9. #define    malloc(s)    loc_malloc(s,__FILE__,__LINE__)
  10. #define    free(p)        loc_free(p,__FILE__,__LINE__)
  11.  
  12. #endif    /* MY_MALLOC */
  13.